Micron Document
Gemini Proxy


lab6.com lab6.com/3
%PDF-1.6
%§§§§
defm{ This file is also a LaTeX program that prints its own content (use 'xelatex <filename>')
`=
> Baseline Pizza - The 1-2-3 Recipe

>> Ingredients

* 500g flour
* 5g yeast
* 10g salt
* 15g oil

>> Method

Combine ingredients in a large mixing bowl. Start pouring about 400g of water into the mixture, combining into a dough. Stop adding water when the dough comes together into a soft mass. Add a little more flour if the dough is too sticky. Add a little more water if the dough is too crumbly.

Knead the dough for 5-10 minutes. Cover the bowl, and leave to prove for a couple of hours. After it has approximately doubled in size, cut it and shape it into pizza bases, then leave those for another hour.

Bake without toppings in a very hot oven for 5 minutes. Add toppings, then return to the oven for another 10 minutes.

Congratulations! You have made baseline pizza!

This recipe is easy as 1-2-3 to remember, because the yeast, salt, and oil are 1%, 2%, and 3% of the flour by weight.

Why is there a pizza recipe on the front cover of Lab 6? Tune in next page.

> Lab 6 Issue 3 - Gemini Edition

£2.99 JUNE 2022

Can't beat inflation.

`F66bhttps://www.unicode.org/consortium/adopted-characters.html`f

Also in this HTML/PDF/Gemini/LaTeX/x86 polyglot issue:

* HTML comes to Lab 6
* Tombstone of the Druid v0.7.0 changelog
* Back Issues & Errata
* Comments
* Tracking

No coverdisk this month. Or is there?

> Pizza

If you've searched for recipes online recently, you will have noticed the bombardment of garbage topping and tailing small morsels of useful information. The purpose is to grab you by the eyeballs and drag you over as much advertising as possible before you give up. Finding the information you need means you are finished with the page and will not look at any more advertising. Finding the information you need must therefore take as long as possible.

This issue of Lab 6 is dedicated to presenting a simple pizza recipe as plainly and clearly as possible. It appears right at the top of page 1, above even the logo and branding. Branding is life to content farms, so as revenge I bring subordination and death to branding.

Anyway, about that pizza... here's the verbiage that normally stands in your way - but this time, relegated to page 2 safely out of your way.

The recipe is a baseline in the sense that it lays a solid foundation for a basic pizza, on top of which improvements and customisations can be added: different types of flour, different levels of hydration, different flavours of oils, different proving times and temperatures.

One useful tweak is to cold prove the dough in the fridge (with the bowl sealed in clingfilm) all day, or overnight. This gives the yeast more time to work and develop flavour. If left too long, the dough will eventually turn into a micro-brewery and enter strange new taste landscapes.

Proving dough is chemistry and biology and art. You can get radically different results with different times and temperatures.

Experimentation is mandatory.

> HTML comes to Lab 6

Good news people! Lab 6 has seen the error of its ways, and admits that HTML is better than PDF. Accordingly, this file now renders in all the following modes:

* As a Gemini gemtext document
* As a PDF/A document
* As a plain text file
* As a LaTeX program that prints its own content
* And finally, you asked for it: as HTML in a regular web browser


If your web browser respects MIME types in HTTP Headers, you may find the document rendering as PDF by default. But if you don't like this, just save the file, rename it with a .html extension, and open it again in your browser.

>> How does this work?

Badly. As in, it will make the W3C HTML validation service cry. A valid HTML document is required to start with a DOCTYPE declaration, but a valid PDF/A document is required to start with %PDF. These cannot both simultaneously exist at offset zero. What do we do?

`F66bhttps://quirks.spec.whatwg.org/`f

A nice side-effect of the HTML
specpocalypse is that there is even

There are three final lines of PDF endmatter which we can also hide in an HTML comment that never gets closed (which of course is invalid HTML, but accepted by all browsers without issue).

We must take care with two things:

* The end-comment string --> must not appear in the PDF content. This turns out to be easy to avoid, as no PDF syntax uses the double-hyphen, and we can insert arbitrary whitespace into the ASCII85-encoded binary streams to separate any double-hyphens that happen to be generated. Recall from Issue 2 that we encode all PDF streams using the ASCII85 filter in order to remove characters such as 0x00 nulls which would threaten any application wishing to interpret the file as text.

`F66bhttps://www.lab6.com/2`f

* The begin-comment string < !--
must not appear in the plain text

In theory, we are also constrained to avoid the left angle bracket, which opens HTML tags, but in practice we can rely on quirks mode to not care about mismatched angle brackets or unrecognised tags:

a × b × c < recall

>> Improving the reading experience in Gemini mode

Issue 2 encapsulated the non-human-readable main PDF content in a Gemini ''' preformatted block ''' at the end of the document, with the binary content safely ASCII85-encoded in order to keep the file 100% UTF-8. This was partially successful at keeping it out of the way of Gemini readers. The worst side-effect was the lengthening of the scroll bar (in clients such as Lagrange) to accommodate the thousands of lines of encoded content. Can we do better than this? Yes we can! We will use the following features of gemtext and PDF:

* Gemtext disallows 0x0D carriage returns as line separators.
* PDF allows 0x0D carriage returns as line separators.
* Gemini clients must ignore any characters after the ''' on a preformatting toggle off line.

This means if we could replace all the 0x0A line feed characters with 0x0D carriage returns in the PDF content, Gemini clients would not see them as line separators, but instead would see the PDF content as one very, very long line. What's more, we could put that very long line at the end of a ''' preformatting toggle off line, making it completely invisible to Gemini readers.

While that would be ideal, there's a snag: there is one place in a PDF file where line feeds cannot be replaced by carriage returns: the byte following the stream keyword in an object stream. The following from the PDF 1.7 Reference, section 7.3.8.1, is offered as rationale:

`! Without the restriction against following the keyword stream by a CARRIAGE RETURN alone, it would be impossible to differentiate a stream that uses CARRIAGE RETURN as its end-of-line marker and has a LINE FEED as its first byte of data from one that uses a CARRIAGE RETURN-LINE FEED sequence to denote end-of-line.`!

`F66bhttps://opensource.adobe.com/dc-acrobat-sdk-docs/standards/pdfstandards/pdf/PDF32000_2008.pdf`f

Still, while we cannot replace every last line feed, we can still replace enough of them to dramatically improve the Gemini reading experience, reducing from thousands of preformatted lines to a few dozen.

>> What's this about LaTeX?

If you don't like the formatting of this issue, but still like PDF, you can generate a much plainer document by running this file through LaTeX, as follows:

$ mv 3.pdf 3.tex
$ xelatex 3.tex
This is possible primarily thanks
to TeX using % as the character

We can't hide the initial TeX macro definition from Gemini clients, but we can at least put some friendly text in it.

>> Can we go further?

Here's the additional parlour trick.

Since we are encoding the PDF binary content as ASCII85, and PDF objects are expressed in ASCII, could we go as far as making the entire file 7-bit-clean ASCII? Yes, we could, if we could overcome a couple of hurdles:

* The PDF spec requires line 2 to contain "at least four binary characters - that is, characters whose codes are 128 or greater", if the file contains binary data. Since our file no longer contains binary data, we could omit this line.

* PDF/A also requires use of an XMP metadata packet, which in turn requires its opening XML processing instruction to contain a U+FEFF character (to be used as a byte order marker), expressed in a UTF encoding. The UTF-8 encoding is 0xEFBBBF, which isn't ASCII, but fortunately, omitting the U+FEFF entirely is also allowed, to maintain "backward compatibility with earlier versions of the XMP packet specification".

But doing either of these things won't be necessary, because what we really want to do is place the 0x55 and 0xAA bytes at file offset 510 and 511, which is enough to make the file a valid x86 boot sector! A much bigger polyglot payoff than merely rendering as ASCII.

Is it really a valid boot sector? Well, for some value of valid. It will be recognised by the BIOS, which will load it and jump into it, but it falls *somewhat* short of being a functioning operating system (the first opcode byte to be executed will be the % from %PDF, which is 0x25, which is a logical AND between the subsequent bytes and the undefined contents of the AX register). But it's a start.

The byte sequence 0x55AA is not valid UTF-8 either, but we have a wide selection of single-byte ISO-8859 encodings to choose from. Browsers will obey a < meta charset="..." > tag located in the first 1024 bytes, and Gemini clients can be informed of the encoding using a MIME type such as "text/gemini; charset=latin1".

>> Is there any practical application?

This is basic research. Power for power's sake. Build it, and the practical applications will come.


> Longitudinal Storytime...

Once

> Tombstone of the Druid v0.7.0 changelog

* FEATURE: player can now use two or more Wiimotes at the same time.
* FEATURE: new class: antipope.
* FEATURE: new armour: laced boots, with Reidemeister minigame.
* FEATURE: improved rare gothic belt balance; no single rare gothic belt can beat every other rare gothic belt in all contests. Player must now exercise judgement in assignment of rare gothic belt skill points.
* EXPERIMENTAL FEATURE: liquids. Opt in using the --liquids command line option. Beware: worlds generated with this option cannot make portal connections to non-liquids-enabled worlds.
* FIX: removed region locking.
* FIX: turn counter can no longer go below zero when using stacked scrolls of time travel.
* FIX: saved games contained strings that were getting users banned from Dropbox.
* FIX: closed the loophole allowing infinite copper bar trading when server clock diverges from client clock.
* OPTIMISATION: rendering of n×m cattle grids now O(nm) instead of O(2^nm).
* CHORE: depend on ncurses >= 6.3

Source tarballs and precompiled binaries in .deb and AppImage format have been uploaded to the usual repository. This is NOT an LTS release - players with high value games in progress should stay on v0.6.16.

> Back Issues & Errata

Every issue of Lab 6 is carved out of solid wood, self-documented, known to the state of California to contain metadata, and certified in verapdf as PDF/A-3b.

This document's primary URL is https://lab6.com/3, and its hexadecimal SHA256 hash begins 0x03, identifying the issue number.

When this host goes down and you are forced to search for mirrors, use this handy random 128-bit integer that appears in every issue:

250e3f7d581acff115537ba38e89ad31

All content is licensed under:

`F66bhttps://creativecommons.org/licenses/by-sa/4.0/`f

>> Issue 0

SHA-256: 00c411fee9419cd861d9850dc56d53b7e6a211e90df9a1ca953e021b0cf31a56

All hail PDF; FORENSIC.ZIP.

Available over HTTPS, IPFS, and Geminispace:

`F66bhttps://www.lab6.com/0`f
`F669ipfs://QmTAQJro5RmXXpsPbXPZFSAMQZY8Lpw69EskGaJZXTBrWp`f
`=`F19f`[gemini://lab6.com/0`:/page/rgproxy.mu`resultat=lab6.com/0|backurl=lab6.com/3]`f``

>> Issue 1

SHA-256: 0145df4ffcd382db238d1bc87c014013aa9cbc2298fe2a68fef09ca66cc99da6

Making PDFs accessible by polyglotting with MP3; Remarks on replacing HTML with PDF; Fantasy Footbyte, with 256 unique team name puns.

Oh no! The Issue 1 coverdisk was truncated. Ironic, as this was the disk that contained the patch for Issue 0, but also appropriate, as the image representing the disk did have "doesn't work" written on it.

To make amends, Issue 3 contains the real coverdisk1.img.

Available over HTTPS, IPFS, and Geminispace:

`F66bhttps://www.lab6.com/1`f
`F669ipfs://QmZHFELyjXrMzmjDdxoMBZaf4sa6hrxJhAuzUpP6DDV1Xy`f
`=`F19f`[gemini://lab6.com/1`:/page/rgproxy.mu`resultat=lab6.com/1|backurl=lab6.com/3]`f``

>> Issue 2

SHA-256: 0249500532346a546b8bb711755d9b1748d3a9593beeedba3b149554c58f6976

A Gemini-PDF polyglot; The Tilde Quilt; Society.

Available over HTTPS, IPFS, and Geminispace:

`F66bhttps://www.lab6.com/2`f
`F669ipfs://Qmf1LPBTUunr57xPYbQSNXpnN5veQy9gJxr5G3K2bqSp1K`f
`=`F19f`[gemini://lab6.com/2`:/page/rgproxy.mu`resultat=lab6.com/2|backurl=lab6.com/3]`f``


> Comments

Send your feedback to comment@input.lab6.com and it may be published in the next issue.

You can also comment on the issue by typing your comment into the URL bar of your browser, immediately after the issue number, like this:

https://www.lab6.com/3Your Comment Goes Here
gemini://lab6.com/3or here.
Real names and email addresses will not be published, unless requested.

Somehow this commenting system turned out to be quite popular, albeit with some latency. The two main waves of comments come from issues 1 and 2 hitting Hacker News and The Register.

`F66bhttps://news.ycombinator.com/item`f
`F66bhttps://news.ycombinator.com/item`f
`F66bhttps://www.theregister.com/2021/07/20/pdf_html_debate/`f

>> Issue 0
2021-07-19T18:06:32Z (via Gemini)
`! This is served over gemini with mimetype text/gemini, which for this issue doesn't really make sense.`!

lab6 official response: Agreed, and this has now been corrected.

>> Issue 1

19/Jul/2021:12:05:43
`!An interesting comment system. Not sure if it will catch on, but definitely well-supported. Cool!`!
19/Jul/2021:13:24:52
`!Thoroughly enjoyed the dramatic reading!`!
19/Jul/2021:15:14:23
`!this is quirky and stupid as hell which is to say I love it`!
19/Jul/2021:15:28:45
`!using bombdillo I get screens and screens full of junk, and when I quit so characterset has hijacked my terminal prompt forcing me to source bashrc so fail on two gemini readers which ones work`!
19/Jul/2021:16:09:00
`!Very interesting issue, I have to
say. A lot of cool trickery you did
19/Jul/2021:17:37:32
`!0How do you know if this is a comment on issue 1 starting with '0' or a comment on issue 10 starting with 'H'?`!
lab6 official response: Advanced deep learning algorithms.

19/Jul/2021:22:50:33
`!This is really innovative and memorable - thanks you!`!
20/Jul/2021:05:30:59
`!uhhh well that's kind of a wacky idea but i guess here goes`!
20/Jul/2021:12:09:45
`!I tried to extract coverdisk1.img with multiple different tools but it gets truncated at about 45 kibibytes. Why is it happening? `!
20/Jul/2021:13:03:46
`!haha this is so good`!
20/Jul/2021:14:03:05
`!thinking of writing a web browser in scratch`!
20/Jul/2021:20:23:45
`!I commend your creativity`!
21/Jul/2021:07:34:04
`!Inserting a comment`!
21/Jul/2021:14:56:26
`!En serio aix? es un input normal?`!
29/Jul/2021:12:51:11
`!The awesome comment system even works from a Matrix room with URL previsualization`!
03/Aug/2021:12:33:27
`!While the concept and execution are impressive, isn't including all that extra data in the file needless bloat that would slow down the connection if one uses older hardware? Or is the extra data insignificant compared to the entire pdf with attachment? extra text so that the browser doesnt search instead of submit.`!
07/Aug/2021:20:16:32
`!has another typo: "supports pdfs flawlessy"`!
lab6 official response: Thank you. A patch is theoretically possible.

19/Sep/2021:18:41:38
`!Hello this is very interesting and also incredibly cursed`!
14/May/2022:06:22:19
`!Hello dear sir, I appreciated listening to the dramatic reading of your Issue 1 as my first experience of the issue. The half-hearted attempts at reading some of the verbatim text and command line listings were a great source of unintentional comedy`!
14/May/2022:07:19:51
`!Heartily enjoyed! Keep up the great work. - IridescenceDeep`!
14/May/2022:07:43:25
`!Sneed`!
14/May/2022:09:22:47
`!Very cool! loved the PDF hacky part. ~sdomi`!
14/May/2022:09:33:10
`!oh my god...`!
14/May/2022:10:20:16
`!Dear Sir or Madam, your lovely PDF didn't play as an MP3 in my default video player. It said it didn't understand PDFs. I demand a refund. Regards, Anonymous Coward.`!
14/May/2022:12:43:05
`!Hello, World!`!
14/May/2022:14:26:06
`!One of the most delightful hacks I've experienced in some time. The pleasant and amusing audio book reading was the cherry on top.`!
14/May/2022:15:20:30
`!What if issue 11 comes a long, then I can no longer submit a 1 as a comment to issue 1????? panic!`!
14/May/2022:16:35:01
`!Elpher cannot open your gemini link :(`!
14/May/2022:16:37:28
`!Zamn this looks awesome`!
14/May/2022:16:42:31
`!blablabla`!
14/May/2022:16:44:22
`!Very cool`!
14/May/2022:23:00:12
`!This is hilarious. Keep doing this.`!
15/May/2022:07:40:50
`!Wow, this is incredlibe!!!`!
20/May/2022:07:28:31
`!what a neat comment system`!
20/May/2022:08:04:02
`!Siema siema`!
26/May/2022:06:20:49
`!This is very weird, but in a good way. Keep it up!`!
02/Jun/2022:16:18:38
`!Where's comment section?`!


>> Issue 2

19/Jul/2021:13:02:43
`! I like to read longer texts on my Kobo, and generally hate PDFs because they won't reflow nicely. So it was a pleasant surprise to read your first issue and find it displays beautifully. Generating the PDFs is another matter - if I had a one-step process from plain text to PDF/A I might even set up my own PDF site, but the whole multiformat thing is just too complex for me. Graham`!
19/Jul/2021:13:43:41
`!hello`!
19/Jul/2021:13:52:42
`!Could you please shout out my friend Phil? The message is "Rise of the Balfourine!" - Thanks. These articles are fantastic`!
19/Jul/2021:15:15:12
`!does not load in the lagrange gemini reader`!
19/Jul/2021:20:01:47
`!Hi! My mind is blown by those polyglot files. Nice!`!
20/Jul/2021:03:38:55
`!the ipfs links you give are not working in brave browser i haven't spent any time troubleshooting though`!
2021-07-20T03:39:35Z (via Gemini)
`!does this comment feature work on gemini too?`!
2021-07-20T03:40:18Z (via Gemini)
`!this feature works in gemini too!`!
20/Jul/2021:12:48:41
`!nice job my friend`!
20/Jul/2021:21:10:37
`!I had never known that one can sponsor a unicode character and am surprised that more people haven't sponsored one.`!
21/Jul/2021:22:06:10
`!Hey, love your zine. Good stuff yo.`!
2021-07-22T12:34:18Z (via Gemini)
`!Those football team names deserve some kind of medal, and then another one for reading them out.`!
22/Jul/2021:19:28:29
`!Ive enjoyed readint this. I too an sick of the SEO/Ad driven web of today. Though most of the tech you discuss here is beyone my means`!
23/Jul/2021:20:21:25
`!I laughed out loud at your commenting system. Good show!`!
25/Jul/2021:08:59:11
`!Great work on ployglot PDF. You're ahead of your time and meaningfully challenge established beliefs, and so naturally will be rediculed. Ignore the idiots, they still live in a flat world.`!
2021-07-26T15:20:14Z (via Gemini)
`!Great to see the comments also work on gemini! Keep up the good words :-)`!
24/Aug/2021:21:19:56
`!Love what you're doing, I hope we'll have a new issue soon :)`!
lab6 official response: Thank you for your patience!

2021-09-04T19:44:44Z (via Gemini)
`!I'm watching this PDF on GemiNaut on Windows 11 PR (Yes, I know it doesn't make sense) and it renders perfectly`!
2021-09-04T19:45:29Z
`!Both GemiNaut and LaGrange alerts that you certificate has expired`!
2021-09-04T19:47:37Z
`!The link for the previous edition in comments section points to https version of the issue`!
2021-09-04T19:49:51Z
`!And please explain in next release the voodoo that manipulates the SHA-256 hash`!
lab6 official response: Change a non-critical range of bytes in a loop until you hit the target hash prefix

2021-10-18T18:41:39Z
`!very nice magazine you got there, i love reading it, regards,,`!
11/Nov/2021:17:53:29
`!omg, i really love this "website"! it has been a breath of fresh air, and i'm sure i'll steal its design in some future creation one day.`!
04/Dec/2021:14:45:48
`!Eagerly awaiting the next issue`!
lab6 official response: Thank you for your patience!
09/Dec/2021:02:53:19
`!i feel happy because of these issues but i also feel sad because i do not know how to find the coverdisk as a pdf attachment`!
07/Jan/2022:01:29:17
`!Could you please shout out my friend Phil? The message is "Rise of the Balfourine!" - Thanks. These articles are fantastic`!
lab6 official response: Think hard before making any more declarations, Phil.

25/May/2022:14:09:26
`!Am I second? I'd like to thank my family and friends.`!
14/May/2022:12:30:02
`!Somehow I keep getting the SocketExpection No route to host when I try to open the gemini version in the deedum browser - wonder what's causing it.`!
lab6 official response: The Gemini server was down. In cases like these, best to just wait a few months and try again.

15/May/2022:12:15:37
`!what kind of reponse i get when i make a comment`!
lab6 official response: Fabulous cash prizes.

15/May/2022:15:35:08
`!Oh heyyy`!
15/May/2022:16:31:36
`!Good look`!
01/Jun/2022:15:15:54
`!I'll be darned.`!
lab6 official response: You will be.


> Tracking


+-----------------------------------------------+-----------------------------+
| OEIS entries | 354,744 |
+-----------------------------------------------+-----------------------------+
| English Wikipedia entries | 6,522,684 |
+-----------------------------------------------+-----------------------------+
| RC5-72 keys tested | 414,381,015,840,122,208,256 |
+-----------------------------------------------+-----------------------------+
| Bitcoin blocks | 741,1777 |
+-----------------------------------------------+-----------------------------+
| XKCDs | 2,635 |
+-----------------------------------------------+-----------------------------+
| IPv6 adoption | 41.27% |
+-----------------------------------------------+-----------------------------+
| Abe Vigoda Status Page Status | Still up |
+-----------------------------------------------+-----------------------------+
| Largest Prime | 2^82,589,933 - 1 |
+-----------------------------------------------+-----------------------------+
| BTTF Movies | 3 |
+-----------------------------------------------+-----------------------------+
| World population according to the CIA | 7,772,850,805 |
+-----------------------------------------------+-----------------------------+
| Latest stable Linux kernel | 5.18.5 |
+-----------------------------------------------+-----------------------------+
| Color Names | 2,986,052 |
+-----------------------------------------------+-----------------------------+
| Latest number of tildeverse's #counting | 19,311 |
+-----------------------------------------------+-----------------------------+
| Count of University of Queensland pitch drops | 9 |
+-----------------------------------------------+-----------------------------+
| Project Gutenberg eBooks | 68,341 |
+-----------------------------------------------+-----------------------------+
| OCRemix Releases | 4,351 |
+-----------------------------------------------+-----------------------------+
| Atmospheric CO2 ppm | 420.63 |
+-----------------------------------------------+-----------------------------+
Special tracking mention of Queen Elizabeth II who has become the second longest reigning monarch of all time, closing in on Louis XIV with only two more years to go before becoming the GOAT. Go get him, your majesty!

If you're reading this in a PDF viewer, congratulations, you made it to the end!
If you're reading this in a Gemini client, what follows is the PDF data.
If you're reading this in the operating system that somehow emerges from the file when booted in qemu, you're on your own.
3 0 obj<</Params 1 0 R/Subtype /application#2foctet-stream
/Filter[/ASCII85Decode/FlateDecode]/Type /EmbeddedFile/Length 13406>>stream
Gb"0W>E!**@Mn5S.7;'gG1RNUNaO7rgC2&=
c?+3";to7T'TsUK]j,T%8$'s1[7X+9TqWq
endobj2 0 obj11697endobj1 0
obj<</ModDate
Gb!#_8ZsDKOhSS;Ohf'</SM_^dA-
@on"o+faZ0AR"MKZQ:EMoNA'ojmjAmR=j5%
endobj17 0 obj<</P 18 0 R/S /Div/Pg
7 0 R/Type /StructElem/K [19 0
Gb"/lH#shPq8W^B!Q%STCpI2T;''YN$pon
jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3jYE.W>q3h'5=R6PZ=ghe=NC2#n^qf3>r=3
endobj390 0 obj<</Group <</S /Transparency/I true/CS /DeviceRGB>>/Contents 391 0 R/Type /Page/Resources 9 0 R/Parent 10 0 R/StructParents 1/MediaBox [0 0 595.303937007874 841.889763779528]>>endobj391 0 obj<</Filter[/ASCII85Decode/FlateDecode]/Length 4486>>stream
Gatm?=c4Q9&Us1UOl3^&b12oCTIB$)YRUK6
d'+&#&%6]6#A]eL#&O<d7ta3,8?&3+>^H[P
endobj42 0 obj<</P 24 0 R/A 392 0
R/S /H1/Pg 390 0 R/Type
Gatm@8WPDm&cSp.#FFi0'Br>Xd3S<+?140
_uXiX04;#DCfrOkHXb)CZFY?ClPV6cgsoQt
endobj51 0 obj<</P 24 0 R/A 404 0
R/S /H1/Pg 401 0 R/Type
Gat=08T,oa&dR41m"2XfB0dI_?6Tr'I8JF
:'Sc_a<C):3#Of^@DL"":K;BbZMF.Fp:rJZ
endobj438 0 obj<</P 61 0 R/A 442 0
R/S /Link/Pg 437 0 R/Type
Gatm@8WRAj&e"C&<N@^4'as15sVVV&0IDN
O@,*si[&S"G$r4<PCK4)@Z'3*;(]qN#O[o7
endobj70 0 obj<</P 24 0 R/A 468 0
R/S /H2/Pg 462 0 R/Type
Gatm@=cXi;%=XpV;*'tHFBP?@.P2)>b(u=
K9HK0@,rL$OZ6K*Y[P>h^CNnAPZg5F>%AH(
endobj81 0 obj<</P 24 0 R/A 505 0
R/S /Text#20body/Pg 502 0 R/Type
GatU9>E<=(EIONeE<*'kQkii;"+pf$G'9#c
nUp34ndtT4Oep"A8qn#:B#,_W!"fT@)W=
endobj92 0 obj<</P 24 0 R/A 529 0
R/S /Text#20body/Pg 526 0 R/Type
Gatm?='<Z8'n5n&C@ldUQC8,8- -^1@ugk
3JNO&mOGBP@Bp79TC"'[jgA^u@L!-
endobj99 0 obj<</P 24 0 R/A 548 0
R/S /H2/Pg 546 0 R/Type
Gat%&9og:'&[Y:BHT59dpa'6-
4()!R*XDNHr.+6%RCS]/NHEK)O,Mq=f/7A
endobj103 0 obj<</P 24 0 R/A 604 0
R/S /H1/Pg 597 0 R/Type
s4IA0!"_al8O'[!<E0k!(R"hs4[N@!!<9(
!s/N+!s8W.!s8Z0#R(A7"9f,;#6kGB$4I=N
endobj607 0 obj<</P 104 0 R/A 647 0 R/S /Figure/Pg 597 0 R/Type /StructElem/K [21]>>endobj648 0 obj<</ColorSpace /DeviceRGB/Subtype /Image/Height 322/Filter[/ASCII85Decode/DCTDecode]/Type /XObject/Width 238/BitsPerComponent 8/Length 29253>>stream
s4IA0!"_al8O'[!<E0j!([(is4[N@!!<9(
!s/N+!s8W.!s8Z0#R(A7"9f,;#6kGB$4I=N
endobj608 0 obj<</P 104 0 R/A 649 0 R/S /Figure/Pg 597 0 R/Type /StructElem/K [22]>>endobj650 0 obj<</ColorSpace /DeviceRGB/Subtype /Image/Height 362/Filter[/ASCII85Decode/DCTDecode]/Type /XObject/Width 277/BitsPerComponent 8/Length 49735>>stream
s4IA0!"_al8O'[!<E0k!(R"hs4[N@!!<9(
!s/N+!s8W.!s8Z0#R(A7"9f,;#6kGB$4I=N
endobj651 0 obj<</Group <</S /Transparency/I true/CS /DeviceRGB>>/Contents 652 0 R/Type /Page/Resources 9 0 R/Parent 10 0 R/Annots [653 0 R 654 0 R 655 0 R 656 0 R 657 0 R 658 0 R]/StructParents 9/MediaBox [0 0 595.303937007874 841.889763779528]>>endobj652 0 obj<</Filter[/ASCII85Decode/FlateDecode]/Length 3340>>stream
Gb!l!ac7@]&[p?']>I2/nIH=5binpbmUTT
jT0'_I'=pEQ;,Mp+@,YXqaG$r<E;g)3sX?]
endobj126 0 obj<</P 24 0 R/A 659 0
R/S /H2/Pg 651 0 R/Type
Gau0F>Dk#P&UrVE0p">H'a+"2&-
KPm.SbdAln%3@j<=%>EH:F(K>G[E:L3fXP#
endobj142 0 obj<</P 24 0 R/A 698 0
R/S /H1/Pg 693 0 R/Type
Gau0Gh5'*9%=^Tl'B';^47VKm%ElV[4_LIB
49R;/U%G$qP(&M$,Quj#pQ]:BP!*l0k;MQ6
endobj165 0 obj<</P 24 0 R/A 732 0
R/S /Text#20body/Pg 730 0 R/Type
Gatm>>H?hp&Us1U@E@1iH_lm98^K;9qj'BD
p0llE*gSo6fpQ*4,j[4HjPQl8F=XnM's#'
endobj182 0 obj<</P 24 0 R/A 751 0
R/S /Text#20body/Pg 749 0 R/Type
Gau0Fhi$R*&Us2'_N;6Zp8U'J,sc%.l'[8/
mU9NH%n@(ghi3a0B&4N]DVF!W[-
endobj202 0 obj<</P 24 0 R/A 773 0
R/S /Text#20body/Pg 771 0 R/Type
Gau0F>Hchj&UrVE+eW'S<[NTt8-
0/"kNk3e[QklB*2!g2*nht/"'Ao/#29(Rc4
endobj223 0 obj<</P 24 0 R/A 796 0
R/S /Text#20body/Pg 794 0 R/Type
Gau'W>H9$Y&UlsZU*4H0BhKbO>Cp9kB(cWY
i!7/N4IA5VZ(28l">:-SrdCe=-
endobj247 0 obj<</P 24 0 R/A 822 0
R/S /Text#20body/Pg 820 0 R/Type
Gb!;f>H8aa&UrVE0p"?3NqtrqYRI&.k:AUN
endobj275 0 obj<</P 24 0 R/A 852 0
R/S /Text#20body/Pg 850 0 R/Type
s4IA0!"_al8O'[!<E0k!(R"hs4[N@!!<9(
!s/N+!s8W.!s8Z0#R(A7"9f,;#6kGB$4I=N
endobj884 0 obj<</ColorSpace /DeviceGray/Decode [1 0]/Subtype /Image/Height 210/Filter[/ASCII85Decode/FlateDecode]/Type /XObject/Width 206/BitsPerComponent 8/Length 2223>>stream
Gb"0VCMZp!60"0;n3iH;<qlZsBm$eno<
SQuAXi]W0N-5pen5'O0>d#"Dm6)/*-
endobj885 0 obj<</Group <</S /Transparency/I true/CS /DeviceRGB>>/Contents 886 0 R/Type /Page/Resources 9 0 R/Parent 10 0 R/StructParents 17/MediaBox [0 0 595.303937007874 841.889763779528]>>endobj886 0 obj<</Filter[/ASCII85Decode/FlateDecode]/Length 2624>>stream
Gb!;e9oC:-
&Zf"8FUJiEhq&@'FA'q?!tPk"r_kkI'C:?
endobj304 0 obj<</P 24 0 R/A 887 0
R/S /Text#20body/Pg 885 0 R/Type
Gb!#a8ZsDMEPB1p;1NNcWeP;P#s8pk<nW(I
(o[NV$m/ZA)-_-
endobj317 0 obj<</P 24 0 R/A 922 0
R/S /H1/Pg 900 0 R/Type
Gb"/%m;H31*WB?Z-
$,P&BsWuEZlF/A[DUUQmEe1qCe^*QNK^1nF
endobj1173 0 obj<</Descent 0/CapHeight 926/StemV 80/Type /FontDescriptor/FontFile2 1172 0 R/Flags 4/FontName /CAAAAA+OpenSymbol/FontBBox [-179 -312 1082 926]/ItalicAngle 0/Ascent 0>>endobj1174 0 obj<</Filter[/ASCII85Decode/FlateDecode]/Length 284>>stream
Gar'$6#2- -&;BTK'm&.n/5'*"&W1/96bB2'59M;J%Fdrdj2$6&0l("W+b?!S^>r"1gHB]?PCDV$HV?,>Ef<XnfcghaGuA2WcJ*H>]D+-V1n<G-/mY,)!Y;h2t<3P)k7sT)"=X!N?,=&#u2RZ0=kM#r5'=#6(s_O*0,'cZ^>I7-MOkJ[(.]*RsDGi']3Q$%AU@Y;QE)N/EF6<+gj"82?@-mQ54,@=PT8"Xp9!WbVn(H'CVtRBEg43IsV+I7A=4eVhKYQCX6enZR^&a,'D5.~>endstream
endobj1175 0 obj<</Subtype /TrueType/FirstChar 0/Type /Font/BaseFont /CAAAAA+OpenSymbol/FontDescriptor 1173 0 R/ToUnicode 1174 0 R/LastChar 1/Widths [365 794]>>endobj1176 0 obj<</Length1 10736/Filter[/ASCII85Decode/FlateDecode]/Length 7687>>stream
Gb"/)H#R!.H/IHPE"E-
_ga'_rJWCpEidphMOeP*kLEmq88KE=-
endobj1177 0 obj<</Descent 0/CapHeight 1067/StemV 80/Type /FontDescriptor/FontFile2 1176 0 R/Flags 68/FontName /FAAAAA+NotoSans-BoldItalic/FontBBox [-596 -389 2779 1067]/ItalicAngle -30/Ascent 0>>endobj1178 0 obj<</Filter[/ASCII85Decode/FlateDecode]/Length 452>>stream
Gar'&c#/.f%"Re/7?62t,2p"r&5l#V'*kkKgB5f13i!?aTEj>&Z->1@#LF:-N^%LU,lAQ?i3tel5CGcoqo,NO*@Wj>iF6Q:BdK[os1^'XbUNZHrjOUo)_9jhVAjs39rUMd=<ie;dUTnGF*WK'gfWlop<Xm>j@IDGnq&^njDd6d$AH"s5>AcSI'p/UFeqdnTqP.uEFTN0%>-Wr+>F;<XK5JgA]M-IQA7_0U@+p*WU#_APV'u-d;O'n?1/b[CJ2f!>6fKpjN]:>ha2ENs:,mj:73cV#Hj&JNuUA,T=>^-,B6C;"ins1B4c1oE%gKE^'1sP&mj.D>jhsqaW(jq^4,hk)[Up.t1)(&Q&8UY%dWB)ds[rBiW<rDR'ErtN4RZ%#)gffu=IllVg4&DJ;IOl2f+)7@h8CYbBB@aTRCZFthH]/P]_<mgLJ9D5WN~>endstream
endobj1179 0 obj<</Subtype /TrueType/FirstChar 0/Type /Font/BaseFont /FAAAAA+NotoSans-BoldItalic/FontDescriptor 1177 0 R/ToUnicode 1178 0 R/LastChar 30/Widths [600 628 297 473 585 260 297 604 410 604 700 531 880 518 421 610 677 531 690 557 905 594 606 531 551 551 595 519 594 604 285]>>endobj1180 0 obj<</Length1 9928/Filter[/ASCII85Decode/FlateDecode]/Length 6977>>stream
Gb"/)CM[5,I6ZoM#:YM(p^g"gPbh#YOcma
#b?:aV5h[AP'=@fad7J8;jdE'377&lD./>
endobj1181 0 obj<</Descent 0/CapHeight 1084/StemV 80/Type /FontDescriptor/FontFile2 1180 0 R/Flags 68/FontName /JAAAAA+NotoSans-Italic/FontBBox [-665 -389 2766 1084]/ItalicAngle -30/Ascent 0>>endobj1182 0 obj<</Filter[/ASCII85Decode/FlateDecode]/Length 403>>stream
Gar'&c#/.f&;9M$$6R_aKM>!.,_VDF+E?V+9)ATr0<(dW/E7^pqg*,58j.^=AS8*lR&"ILNE.ZW[?G:?d6VJ@@lmf!:AaB1uTmK9"9!ND_ZEi,i79.Z,O1_c.<qH1SZ$fnF=hEpDV7,VN2M<Vf0D+'%Xip28(jN1_2&Ub&Ku_4U>KRHJI@,e1:BoP<QSXge37hA68N%5X&B'$AbLSH.F/)j#ZVOqr1G'%$4,/mU(-+?hmQV;+]]47L[>)Yo9'$_3iNZcG/t5&-,!LWFi'4DIdTA)Md^S-!=>jE'Ahq(Zj2OK7RSI#2LeaOeKpj>q%;3K)cL)di2H2BMJQ)=j4<ZgjF_J/S-N57?SS/RV:tO$E;9EOXM#+"fWsNbp9U^]/qS%(a=I%CCYU?i~>endstream
endobj1183 0 obj<</Subtype /TrueType/FirstChar 0/Type /Font/BaseFont /JAAAAA+NotoSans-Italic/FontDescriptor 1181 0 R/ToUnicode 1182 0 R/LastChar 21/Widths [600 568 579 467 723 579 499 398 527 841 478 260 579 563 453 432 258 579 332 579 875 579]>>endobj1184 0 obj<</Length1 7192/Filter[/ASCII85Decode/FlateDecode]/Length 4881>>stream
Gb!kSD/^H7F'6^K')WA-
=jkBG/M(q>//BKr9!TthU'6Y^8;'W;I_Z.9
endobj1185 0 obj<</Descent 0/CapHeight 981/StemV 80/Type /FontDescriptor/FontFile2 1184 0 R/Flags 4/FontName /GAAAAA+LiberationSerif/FontBBox [-543 -303 1277 981]/ItalicAngle 0/Ascent 0>>endobj1186 0 obj<</Filter[/ASCII85Decode/FlateDecode]/Length 282>>stream
Gar'$5u5EA&;BTNME1)G2UJ%b->(LL4m3fb5CgVXP1Y=Zl(S.6.99/*5k90gK/'"0pXi?aqLt^10uFjL1G3ZYLG7X#86%PBi:<SamUhrQ(:N+dN,qL!C'9-W'EP*9E-h"n^pDI5p;he335&[GdJ]N^-dG7#N+uSd36FB[2Efe4FeLFY(H^^F,04-LD+b.WdFEFU(HjCm3b1ksWlCDARbOrE8H,6*&B!]q/5*:3UbT8+g#I1Pp9B)#J6SG<8X[7kfH1WW^Yb5ag8VBl!.A!eFT~>endstream
endobj1187 0 obj<</Subtype /TrueType/FirstChar 0/Type /Font/BaseFont /GAAAAA+LiberationSerif/FontDescriptor 1185 0 R/ToUnicode 1186 0 R/LastChar 1/Widths [777 250]>>endobj1188 0 obj<</Length1 17040/Filter[/ASCII85Decode/FlateDecode]/Length 12779>>stream
Gb!lBH$igt_oJld:VdX/ME9j,qkFo.Iq@H
QK3Hmm+@G:-amJGNfuH'S#m-
endobj1189 0 obj<</Descent 0/CapHeight 1229/StemV 80/Type /FontDescriptor/FontFile2 1188 0 R/Flags 5/FontName /IAAAAA+NotoSansMono-Regular/FontBBox [-616 -389 1799 1229]/ItalicAngle 0/Ascent 0>>endobj1190 0 obj<</Filter[/ASCII85Decode/FlateDecode]/Length 699>>stream
Gar'(c&S8I'SZ9D"j?.>"SO_HN"e_',SMVb
rhu5K!!+H9C&ejOaP3&&O5!94,l3%<&"g%a
endobj1191 0 obj<</Subtype
/TrueType/FirstChar 0/Type
Gb"/IBlI:sR:(6RpM^ZhL'7VUirP2@6(B4:
q[s2(P'DeW-jbuGOUt*TUdU'hBj$U/41=5r
endobj1193 0 obj<</Descent 0/CapHeight 1069/StemV 80/Type /FontDescriptor/FontFile2 1192 0 R/Flags 4/FontName /BAAAAA+NotoSans-Bold/FontBBox [-631 -389 2799 1069]/ItalicAngle 0/Ascent 0>>endobj1194 0 obj<</Filter[/ASCII85Decode/FlateDecode]/Length 617>>stream
Gar''c&S8Y&;9L7'>ggl(!I2mQB3Dr]p=&e
O5eCd?l46Qeptd8i4%$3f-
endobj1195 0 obj<</Subtype /TrueType/FirstChar 0/Type /Font/BaseFont /BAAAAA+NotoSans-Bold/FontDescriptor 1193 0 R/ToUnicode 1194 0 R/LastChar 59/Widths [600 796 1079 514 305 604 305 260 497 633 619 657 454 387 572 672 591 628 488 500 579 657 572 322 572 572 660 389 633 633 434 943 572 285 572 331 756 813 560 572 569 620 982 477 765 565 633 856 578 724 967 217 657 667 637 569 740 572 750 285]>>endobj1196 0 obj<</Length1 18572/Filter[/ASCII85Decode/FlateDecode]/Length 13810>>stream
Gb!lBH[K%!RG^*ghQ)D'agufPQ=F:d9!VsK
:ba[EFd8]pG8-
endobj1197 0 obj<</Descent 0/CapHeight 1067/StemV 80/Type /FontDescriptor/FontFile2 1196 0 R/Flags 4/FontName /DAAAAA+NotoSans-Regular/FontBBox [-621 -389 2799 1067]/ItalicAngle 0/Ascent 0>>endobj1198 0 obj<</Filter[/ASCII85Decode/FlateDecode]/Length 790>>stream
Gar'(c&S8Y&;9L7"inkr"nMt7ag1!8NT<HU
'IOEA@I,,UJ1s1^m6c#=Z;M1@C7r3%X6H=a
endobj1199 0 obj<</Subtype
/TrueType/FirstChar 0/Type
Gb".tHT[O,)'D6/O[IOYd,oJLfa@>b@qH;6
X<J:B'Z^>0QPmdOe&cS0V;:(q&CkkWXjqQ
endobj1201 0 obj<</Descent 0/CapHeight 1101/StemV 80/FontFile 1200 0 R/Type /FontDescriptor/Flags 4/FontName /LAAAAA+CantarellRegular/FontBBox [-180 -256 1412 1102]/ItalicAngle 0/Ascent 0>>endobj1202 0 obj<</Filter[/ASCII85Decode/FlateDecode]/Length 304>>stream
Gar&9]5GP0&FB4M/MG'LluQ&J9@5%5]@-Xnc9TY%T3^KN=5c7!+-?f"_^@e1R_TumN+E%,C_#CH]0X^B*]<gP"$:-ZAqpB(ou^Q!_ie0V5rU[R?WI2gQnjInR*odKYJRis35*r.PQBFV>'Yc@+^N)T!<9kTU;'[U=&J3DV+eWu62&*BTJ)2K$QGq%LDZ!MM-Yg8en*E!],].5rE66F7jgQ^4=$s(9OD(e4J'-n23m'V0&.I)NR*]$"Iplod)j4f'@FlqbtqG1VJ.oC%cmSdl_K%AoL$%icA<Sf[Qb]JF~>endstream
endobj1203 0 obj<</Subtype /Type1/FirstChar 0/Type /Font/BaseFont /LAAAAA+CantarellRegular/FontDescriptor 1201 0 R/ToUnicode 1202 0 R/LastChar 4/Widths [500 782 567 466 527]>>endobj1204 0 obj<</Length1 11652/Filter[/ASCII85Decode/FlateDecode]/Length 7722>>stream
Gb!kVBm<k4Q07!O=n3JVNFO?'Etg]2]Z0IS
endobj1205 0 obj<</Descent 0/CapHeight 1167/StemV 80/Type /FontDescriptor/FontFile2 1204 0 R/Flags 4/FontName /EAAAAA+Impact/FontBBox [-129 -330 1260 1167]/ItalicAngle 0/Ascent 0>>endobj1206 0 obj<</Filter[/ASCII85Decode/FlateDecode]/Length 303>>stream
Gar&9bA+pK&A7<Zp6ZnQA1-GK"N;F6QahF#KY?I&_)u*jb*TI.lhI?#Dj=1B:)u]G#+[8M8)K_HV?+sB-JsWN>c6@aZ<JQ@'!+I<dm34^c6W:D+Q^2DY-Z@pcE1_MAmNVN?@Y@n^hG.=uX:VZgEVDCC"9,UIu_sP[JI+S7'RCe;V&MNh%?HVX6p?^O_Ft+Ol*HHPPoW/jX31b"]qq+XAnrX(:G<5OH*FL/Hi-UreK@Kt+LQE4t9]j3s%SN6_["/g]uSbfP/'T>mPU(o_A_:T9'i>)0j?$pJ3'H/H6?FD:~>endstream
endobj1207 0 obj<</Subtype /TrueType/FirstChar 0/Type /Font/BaseFont /EAAAAA+Impact/FontDescriptor 1205 0 R/ToUnicode 1206 0 R/LastChar 4/Widths [750 273 503 519 541]>>endobj1208 0 obj<</Length1 18420/Filter[/ASCII85Decode/FlateDecode]/Length 7348>>stream
Gb".'$[>lgFh'$?Sb.,rg5ZhMg6=fSL4h%"
E+hVp!g.?Q;.<2$,j,1YbI-
endobj1209 0 obj<</Descent 0/CapHeight 1232/StemV 80/Type /FontDescriptor/FontFile2 1208 0 R/Flags 4/FontName /MAAAAA+DejaVuSans/FontBBox [-1020 -462 1792 1232]/ItalicAngle 0/Ascent 0>>endobj1210 0 obj<</Filter[/ASCII85Decode/FlateDecode]/Length 282>>stream
Gar'$5u5EA&;BTNME1)G2RK!D->(LL4m3fb5CgVXP1Y=Zl(S.6.99/*5k90gK/'"0pXi?aqLt^10uFjL1G3ZYLG7X#8C[olE;<=AGI("9$eoSm'jqj!2N?.gi[pQW3'I$ri*#;+HfRF*SDLH_k^H7j'5+*LQ"jOm36FB[2Efe4FeLFY(H^^F,04-LD+b/3kk_oKM]S3q*O;LJ<DumL1q-iOSh?3+GS9l=I*JL8RlL6ZH)3)m:6+%!OjgWP;7KaYWj07J%mAMZr:Oa!Ii^=H2~>endstream
endobj1211 0 obj<</Subtype /TrueType/FirstChar 0/Type /Font/BaseFont /MAAAAA+DejaVuSans/FontDescriptor 1209 0 R/ToUnicode 1210 0 R/LastChar 1/Widths [600 837]>>endobj1212 0 obj<</Length1 11396/Filter[/ASCII85Decode/FlateDecode]/Length 6627>>stream
Gb!l!$[<ZAFhY1p8$_fR/AGP%)%dgkA6[&3
,is?Xe^rQ?*V$4"%)"pcE)3Zm'oEVf!95u
endobj1213 0 obj<</Descent 0/CapHeight 928/StemV 80/Type /FontDescriptor/FontFile2 1212 0 R/Flags 5/FontName /HAAAAA+BitstreamVeraSansMono-Roman/FontBBox [-4 -235 604 928]/ItalicAngle 0/Ascent 0>>endobj1214 0 obj<</Filter[/ASCII85Decode/FlateDecode]/Length 282>>stream
Gar'$]l(b2&;5D%@'qDa!^!Mq.D"^g(ppu491,D%k1i3)Adl"XGN-3.6ne'5+"cG]#Tgteup'!Nu>r&SoKT;4+mX45cUj##F>s$FuS0O['9M;A=P_"A()k)-Jjo2K@>I6"5YL*_B(_a"K.;R0=kLhqSX7#K2HIn*_3d(aei]4UFt',o4!KfSHfs]Pe+M0"Un^ihFI>=bgg-6Icq%6?BiK$H'>>%Up:2c*ATF8K)YWQgA_';u9Z]D8<9tdP)n.dW3$_VafR1$qqC?[b(RGQ~>endstream
endobj1215 0 obj<</Subtype /TrueType/FirstChar 0/Type /Font/BaseFont /HAAAAA+BitstreamVeraSansMono-Roman/FontDescriptor 1213 0 R/ToUnicode 1214 0 R/LastChar 1/Widths [602 602]>>endobj1216 0 obj<</Length1 720/Filter[/ASCII85Decode/FlateDecode]/Length2 3408/Length 4956/Length3 532>>stream
Gb"/'GrV%*ho@=j;M^Qn>dD;-
'Y^ejQg?fe)eOiPQsks?KX$^mqi7KSW^(:
endobj1217 0 obj<</Descent 0/CapHeight 1228/StemV 80/FontFile 1216 0 R/Type /FontDescriptor/Flags 4/FontName /KAAAAA+CantarellExtraBold/FontBBox [-220 -258 1574 1229]/ItalicAngle 0/Ascent 0>>endobj1218 0 obj<</Filter[/ASCII85Decode/FlateDecode]/Length 384>>stream
Gar'ea_l_b&-1(h^V%b&7IX.NJ*Bk&gRrm<8%j*p5iH-'QVjhq'YZ>H%kS)gfTJ33/KXj6W;LL/GE6oA2MA?lH47"$a]B3[PS#<mS72rd*cjb@5>#9J[*:lc5'-fisu9k-4?eK,N!Sca&mF+BWjHG99g(j7_d:(C]56/m)7s"+=G;WUnHl!#e=)AB%9]W>Sa?c)^"JLcUh3f4sf9YSse3d1U*#Z:/eY"JuEr0rmq.QR8"ZO8Kf''+*><>hp[],J@X5+spW3I71-8+4Op#+[,[d17[]'qRRfI7U6K*m%$I/+RkC5,NH:qNO[#eZ&6Z/O_G_-1Un*W#]1;Ft:3'^<9;6\<e0>=jlG4iHbk#J]'n7up[BI05>mP:H~>endstream
endobj1219 0 obj<</Subtype /Type1/FirstChar 0/Type /Font/BaseFont /KAAAAA+CantarellExtraBold/FontDescriptor 1217 0 R/ToUnicode 1218 0 R/LastChar 17/Widths [500 537 567 581 578 287 397 577 576 528 310 160 584 435 532 902 526 822]>>endobj1220 0 obj<</Length1 15428/Filter[/ASCII85Decode/FlateDecode]/Length 10860>>stream
Gb!lB$[>Y$b=bSgO&A_bRd*Y3sd&564sqV
,bRh%"rIY<81#anBI9.8A2),a1D9j7-
endobj1221 0 obj<</Descent 0/CapHeight 928/StemV 80/Type /FontDescriptor/FontFile2 1220 0 R/Flags 4/FontName /NAAAAA+BitstreamVeraSans-Roman/FontBBox [-183 -235 1286 928]/ItalicAngle 0/Ascent 0>>endobj1222 0 obj<</Filter[/ASCII85Decode/FlateDecode]/Length 436>>stream
Gar'&bAMqd&4Q>@KpV$J!]rLW#pH,j81aU6Bg7.#6]+hO115Yf/&W!;AZ"dnJu'@3%XAoD>PW,Fe'h^&RB=7K6b*i%H7H@h?Hjae*H,0U:22t.0t??Zd&pe[I(sr&&L9?2_T%'S"giSn.:7+c@G6J<GXkA'ikld1k!1?FqISJ'Z*,u^[orMcg:]UF_tpS,0amqNen3q'9:)[$Ief7g&A4C2g;g6BF]7+nDW_!jLhET$"S)dco*/q5Er5.#Q3bZQ'-jnr>fO^kOAa9gIBa=4BOO>G1POnYB>r.4/]j<LutIcLoWan6#:'-ag61Qu%^N'9#Vh@uCV<JJ's$Jd!)Vo3e/b-6@hFnSVq47&T4Zb611K4OubcU>'gLArdW5Mad3hbOoH)t1j(ko[ak=8(0L1Z3>lRi%kX(e*.Mk4iiE2lV~>endstream
endobj1223 0 obj<</Subtype
/TrueType/FirstChar 0/Type
Gatn)AQ0FNqtBd.eI<>N*>dPfh(9Yqh(;n>
JuEdK-maHH!hq(c$7ZB,W1Y?5W.9F9J>0j&
endobj1248 0 obj<</S /GTS_PDFA1/Type /OutputIntent/OutputConditionIdentifier (sRGB IEC61966-2.1)/DestOutputProfile 1247 0 R>>endobj1249 0 obj<</Subtype /XML/Length 5355/Type /Metadata>>stream
?xpacket begin="" id="W5M0MpCeh
iHzreSzNTczkc9d"?><x:xmpmeta
you're on lab6.com/3